Skip to main content
Version: 24.12

Update an asset with the given ID

Updates an asset with the given ID if it exists. If the asset is not found, no further action is taken. DANGER ZONE: Note that updating assets can have unexpected results, especially for contract offers that have been sent out or are ongoing in contract negotiations.

Request Body required
  • id string
  • properties object
  • property name* object
  • privateProperties object
  • property name* object
  • dataAddress object
  • properties object
  • property name* object
Responses

Asset was updated successfully


Schema
  • message string
  • level string
PUT /assets

Request

Base URL
https://dgk.cx.dev.dih-cloud.com
Body required
{
"id": "string",
"properties": {},
"privateProperties": {},
"dataAddress": {
"properties": {}
}
}
curl -L -X PUT 'https://dgk.cx.dev.dih-cloud.com/assets' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"id": "string",
"properties": {},
"privateProperties": {},
"dataAddress": {
"properties": {}
}
}'